home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1997 December / MACPOWER-1997-12.ISO.7z / MACPOWER-1997-12.ISO / AMUG / PROGRAMMING / WASTE Object Handlers 1.2.6.sit / WASTE Object Handlers 1.2.6 / Other Headers / GetFileIcon.h next >
Text File  |  1997-09-08  |  558b  |  27 lines

  1. // File Object Handler Utilities for the WASTE Text Engine
  2. // Part of the WASTE Object Handler Library by Michael Kamprath, kamprath@kagi.com
  3. // maintenance by John C. Daub, hsoi@eden.com
  4.  
  5. #ifndef __GETFILEICON__
  6. #define __GETFILEICON__
  7.  
  8. #ifndef __ICONS__
  9. #include <Icons.h>
  10. #endif
  11. #ifndef __FINDER__
  12. #include <Finder.h>
  13. #endif
  14.  
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18.  
  19. pascal OSErr GetFileIcon( FSSpec *thing, IconSelectorValue iconSelector, Handle *theSuite);
  20. Boolean IsSuiteEmpty( Handle theSuite );
  21.  
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25.  
  26. #endif // __GETFILEICON__
  27.